home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Disc to the Future 2
/
Disc to the Future Part II Programmer's Reference (Wayzata Technology)(6013)(1992).bin
/
MAC
/
MPW_TOOL
/
TOOLS
/
TOOLS_WI
/
FAST_LEX
/
BZERO.C
< prev
next >
Wrap
Text File
|
1988-07-04
|
84b
|
10 lines
bzero(x,size)
char *x;
int size;
{
int i;
for(i=0;i<size;i++){
*(x+i) = 0;
}
}